home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-19 / iritsm3s.zip / IRIT-DJG.CFG < prev    next >
Text File  |  1992-02-24  |  2KB  |  86 lines

  1. ;If TRUE (default) generates graphics. Otherwise only generates geometry
  2. ; but it can not be displayed.
  3. DoGraphics    TRUE
  4.  
  5. ;If a mouse is to be supported.
  6. Mouse        TRUE
  7.  
  8. ;If a joystick is to be supported.
  9. Joystick    FALSE
  10.  
  11. ;Control sensitivity of the mouse. The bigger this number is, the lesser
  12. ;sensitive the mouse is.
  13. MouseSensitivity    10
  14.  
  15. ;The startup file - make it null string if none is needed. This file
  16. ;will be searched along the DOS PATH setup, starting from current directory.
  17. StartFile    "IritInit.irt"
  18.  
  19. ;Colors to objects loaded using LOAD command (if not specified in object
  20. ;itself), for boolean objects results, and primitive objects created.
  21. ;Color are supported only on EGA/VGA system as follows:
  22. ;
  23. ; BLACK         =  0
  24. ; BLUE         =  1
  25. ; GREEN         =  2
  26. ; CYAN         =  3
  27. ; RED         =  4
  28. ; MAGENTA      =  5
  29. ; BROWN         =  6
  30. ; LIGHTGRAY     =  7
  31. ; DARKGRAY     =  8
  32. ; LIGHTBLUE     =  9
  33. ; LIGHTGREEN     =  10
  34. ; LIGHTCYAN     =  11
  35. ; LIGHTRED     =  12
  36. ; LIGHTMAGENTA     =  13
  37. ; YELLOW     =  14
  38. ; WHITE         =  15
  39. ;
  40. LoadColor    1
  41. ICrvColor    14
  42. BoolColor    2
  43. PrimColor    4
  44.  
  45. ;Name of file to save LOGFILE comman output (if empty string NUL: is selected).
  46. LogFile        "irit.log"
  47.  
  48. ;Name of editor you want to execute from the program as a child process. This
  49. ;must be FULL path name for that file. only one parameter is supplied to it
  50. ;and that is the file name you want to edit as given to EDIT command.
  51. ;This better be a small and fast editor, as IRIT is a BIG program, and your
  52. ;'.irt' files are usually small...
  53. EditPrgm    "c:\util\ted.com"             ;From PC Magazine...
  54.  
  55. ;Below is the color selection for window frame color. Colors should be one of:
  56. ; WHITE   = 0
  57. ; BLACK   = 1
  58. ; RED     = 2
  59. ; GREEN   = 3
  60. ; BLUE    = 4
  61. ; YELLOW  = 5
  62. ; CYAN    = 6
  63. ; MAGENTA = 7
  64. ;Four colors should be specified for the View/Trans/Input windows.
  65. WndwViewClr    2
  66. WndwTransClr    3
  67. WndwInputClr    5
  68.  
  69. ;Below the size and position of the View/Trans/Input windows
  70. ;should be specified in normalized coordinates where the screen spans
  71. ; X:[0..1], Y:[0..1]. Windows may overlap.
  72. WndwViewPos   "0.02, 0.02, 0.72, 0.66"
  73. WndwTransPos  "0.75, 0.02, 0.98, 0.66"
  74. WndwInputPos  "0.04, 0.7,  0.98, 0.98"
  75.  
  76. ;Size in pixel of the windows frame width.
  77. WndwWidth    8
  78.  
  79. ;Boolean to control the default display of window name headers.
  80. WndwHeader    FALSE
  81.  
  82. ;Boolean to control smooth scrolling of the input text window. Smooth is
  83. ;nicer but slower.
  84. WndwSmthTxtScrl    FALSE
  85.  
  86.